home *** CD-ROM | disk | FTP | other *** search
- /* %filename% */
- /* Created %date% %time% by AppMaker */
-
- typedef struct {
- /*Standard fields:*/
- TEHandle text;
- ControlHandle vScroll;
- ControlHandle hScroll;
- short fileNum;
- short volNum;
- Boolean dirty;
- StringHandle filename;
- enum {noWindow%for each window gen windowKind%} windowKind;
-
- /*Application-specific fields:*/
- %for each window gen windowFields%
- } WinInfoRec, *WinInfoPtr;
-
- extern Boolean quittingTime;
- extern EventRecord curEvent;
- extern WindowPtr curWindow;
- extern WinInfoPtr cur;
- extern Boolean inBackground;
-
- /*----------*/
- void InitGlobals (void);
- void SetInfo (WindowPtr window);
- void SetNewInfo (WindowPtr window);
- void DiscardInfo (WindowPtr window);
-